LengthIndicator
The base class for indicators with one resulting value and based on the period.
Inherits: BaseIndicator
Constructors
protected LengthIndicator(TBuffer buffer)
lengthIndicator = LengthIndicator(buffer)
The base class for indicators with one resulting value and based on the period.
- buffer
- Buffer
Properties
protected TBuffer Buffer { get; }
value = lengthIndicator.Buffer
The buffer for data storage.
public virtual int Length { get; set; }
value = lengthIndicator.Length
lengthIndicator.Length = value
Period length. By default equal to 1.
public override int NumValuesToInitialize { get; }
value = lengthIndicator.NumValuesToInitialize
Number of values that need to be processed in order for the indicator to initialize (be IsFormed equals ). if undefined.
Methods
protected override bool CalcIsFormed()
result = lengthIndicator.CalcIsFormed()
Calc IsFormed.
Returns: IsFormed
protected virtual int GetCapacity()
result = lengthIndicator.GetCapacity()
Gets the capacity of the buffer for data storage.
Returns: The capacity of the buffer. By default, it is equal to Length.
public override void Load(SettingsStorage storage)
lengthIndicator.Load(storage)
Load settings.
- storage
- Settings storage.
protected override IIndicatorValue OnProcess(IIndicatorValue input)
result = lengthIndicator.OnProcess(input)
To handle the input value.
- input
- The input value.
Returns: The resulting value.
protected virtual decimal? OnProcessDecimal(IIndicatorValue input)
result = lengthIndicator.OnProcessDecimal(input)
To handle the input value.
- input
- The input value.
Returns: The new value of the indicator.
public override void Reset()
lengthIndicator.Reset()
To reset the indicator status to initial. The method is called each time when initial settings are changed (for example, the length of period).
public override void Save(SettingsStorage storage)
lengthIndicator.Save(storage)
Save settings.
- storage
- Settings storage.
public override string ToString()
result = lengthIndicator.ToString()
Преобразовать к строковому представлению.
Returns: Строковое представление.